home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_cls.c < prev    next >
C/C++ Source or Header  |  1987-05-06  |  218b  |  15 lines

  1. #include <dos.h>
  2.  
  3. void crt_cls()
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.x.ax = 0x0600;
  8.     regs.x.cx = 0;
  9.     regs.h.dh = 25; regs.h.dl = 80;
  10.     
  11.     int86( 0x10, ®s, ®s );
  12.     
  13.     crt_home( 0 );
  14. }
  15.